home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / comm / maxs / MaxRexx.lha / MAXREXX / Examples / quit.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1980-03-10  |  324 b   |  22 lines

  1. /*
  2.  
  3. Quit.Rexx - Min MAXREXX Version 1.2
  4.  
  5. To use this script properly, run it from a shell with the following:-
  6. RX quit.rexx <line>
  7.  
  8. So to quit MaxRexx on Line 2 use:-
  9. RX quit.rexx 2
  10.  
  11. To quit from MaxRexx on a Local Login use:-
  12. RX quit.rexx 0
  13.  
  14. */
  15.  
  16. line=arg(1)
  17. port='ADDRESS MAXSERVE'line
  18. Interpret port
  19. OPTIONS RESULTS
  20. $END
  21.  
  22.